* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.banner_slides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.banner_slideshow-container {
  max-width: 1170px;
  max-height: 450px;
  dsiplay : block;
  margin: auto;
}

/* Next & previous buttons */
.banner_prev, .banner_next {
  position: absolute;
  cursor: pointer;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

/* Position the "prev button" to the right */
.banner_prev {
  transform: translate(-584px, 0px);
}
/* Position the "next button" to the right */
.banner_next {
  transform: translate(543px, 0px);
}

/* On hover, add a black background color with a little bit see-through */
.banner_prev:hover, .banner_next:hover {
  background-color: rgba(0,0,0,0.8);
}


/* The dots/bullets/indicators */
.banner_dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.banner_active, .banner_dot:hover {
  background-color: #717171;
}

.banner_buttcontainer {
	position: absolute;
	top:350px;
	right:0;
	bottom:auto;
	left:0;
}
.banner_dotcontainer {
	position: absolute;
	top:500px;
	right:0;
	bottom:auto;
	left:0;
}

/* Fading animation */
.banner_fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .banner_prev, .banner_next,.banner_text {font-size: 11px}
}